home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Shell Folders 3.xpl < prev    next >
Text File  |  2001-09-01  |  1KB  |  53 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="4"
  3. "COUNT"="2"
  4. "UIPATH 1"="System\File System\Folders\System"
  5. "NAME"="Windows Folders #2"
  6. "OSVERSION"="00111"
  7. "VERSION"="1.02"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Service Pack Files"
  10. "TEXT 2"="Last Known Good"
  11. "DESCRIPTION 1"=""Service Pack Files" specifies the folder for where the latest service pack files were installed from."
  12. "DESCRIPTION 2"=""Last Known Good" specifies the folder for the "Last known-good" version of some Windows files that are needed by the "System File Checker" (Windows 98/Me/2000)."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"="Thanks to Pierre Szwarc for his help!"
  17. "COMMENT 2"="Thanks to SIMONTHOMSON for the spelling error notice.."
  18.  
  19.  
  20. sV1="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\ServicePackSourcePath"
  21. sV2="HKUS\.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Applets\System File Checker\Src1"
  22. Sub Plugin_Initialize 
  23.  s=RegReadValue(sV1)
  24.  SetUIElement 1,s
  25.  
  26.  s=RegReadValue(sV2)
  27.  SetUIElement 2,s
  28. End Sub
  29.  
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34.  
  35.  
  36. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  37.  s=GetUIElement(1)
  38.  Call RegWriteValue(sV1,s,1)
  39.  
  40.  s=GetUIElement(2)
  41.  Call RegWriteValue(sV2,s,1)
  42.  
  43.  
  44.  Call Restart 'Required because of ActiveDestop and other crap
  45. End Sub
  46.  
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub
  50.  
  51.  
  52.  
  53.